home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 41
/
Aminet 41 (2001)(Schatztruhe)[!][Feb 2001].iso
/
Aminet
/
biz
/
dopus
/
DOpusCFG.lha
/
DOpusCFG_020
/
rexx
/
MakeIntoRollover
< prev
next >
Wrap
Text File
|
2000-12-03
|
917b
|
30 lines
/* Turn a normal file into an AFS Rollover file
Edited version by M. Rohles $VER: 1.1 (25.10.2000)
Original by Kirk Strauser. (AMINET:disk/misc/RolloverTools.lha)*/
/* Program-name / Found at | Version | Configured Path+Name / misc
---------------------------------------------------------------------------
Requires: PFS2/3, Rollover-Commands | 1.2 | All commands should be copied
| into C: Dir during PFS-Install
*/
if arg()=0 then do
say 'USAGE: MakeIntoRollover FILENAME/A SIZEINBLOCKS/N/A'
exit 10
end
parse arg fname size
address command
'Copy 'fname' t:MakeIntoRollover.temp'
'Delete >NIL: 'fname
'MakeRollover 'fname' 'size
'echo "Adding data to Rollover file ... please wait ..."'
'Type >'fname' t:MakeIntoRollover.temp'
'Delete >NIL: t:MakeIntoRollover.temp'